home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 256_01 / fun12h.a < prev    next >
Text File  |  1988-01-06  |  2KB  |  54 lines

  1. ;---------------------------------------------------------------------
  2. ;    ASM88 FILE:     FUN12H.A     Search for Next Matching Entry
  3. ;    ----------
  4. ;    WRITTEN:        26/10/87
  5. ;    -------
  6. ;    PURPOSE:        This is one of a series of files which take
  7. ;    -------         advantage of INT 21H functions under MS-DOS.
  8. ;                    In each case the error situation is marked by
  9. ;                    the carry flag being set.   We use the De Smet
  10. ;                    external variable '_carryf' to see whether the
  11. ;                    carry is set on return from the function.
  12. ;                    If so, the error code can be used to obtain
  13. ;                    information about the specific error.
  14. ;
  15. ;    USAGE:          int FUN12H(fcb_buf, &_carryf)
  16. ;    -----           char *fcb_buf;  /* FCB buffer used in FUN11H */
  17. ;                    char *_carryf;
  18. ;
  19. ;    DEPENDENCIES:           De Smet C V 2.44+
  20. ;    ------------
  21. ;    Copyright 1987 - Cogar Computer Services Pty. Ltd
  22. ;---------------------------------------------------------------------
  23.  
  24. CSEG
  25. PUBLIC FUN12H_
  26.  
  27. FUN12H_:
  28.     push    bp    ; normal De Smet C start
  29.     mov    bp,sp    ; point to the stack
  30.     mov    ax,ds    ; and make ES common with DS
  31.     mov    es,ax
  32. ;----------------------------------------------------------------------
  33. ;  The unique programme follows.
  34. ;----------------------------------------------------------------------
  35.     mov    dx,[bp+4]    ; address of the un-opened FCB
  36.     mov    ah,12H    ; the Function No.
  37.     int    21h
  38.     cmp    al,0ffh    ; this is the error check
  39.     je    FUN12H_ERROR
  40.     xor    ax,ax    ; prepare for normal return
  41.     jmp    FUN12H_QUIT
  42. FUN12H_ERROR:
  43.     mov    si,[bp+6]    ; get address of '_carryf' variable
  44.     xor    ax,ax
  45.     mov    al,2    ; "no file found" error
  46.     mov    byte [si],1    ; return with _carryf = 1
  47. ;----------------------------------------------------------------------
  48. ;  Normal programme termination.
  49. ;----------------------------------------------------------------------
  50. FUN12H_QUIT:
  51.     pop    bp    ; restore starting conditions
  52.     ret
  53. ;----------------------------------------------------------------------
  54.